type = $type; $this->oldProperty = $oldProperty; $this->newProperty = $newProperty; RectorAssert::className($type); RectorAssert::propertyName($oldProperty); RectorAssert::propertyName($newProperty); } public function getObjectType() : ObjectType { return new ObjectType($this->type); } public function getOldProperty() : string { return $this->oldProperty; } public function getNewProperty() : string { return $this->newProperty; } }